home *** CD-ROM | disk | FTP | other *** search
- .TH LOGFILE
- 6 "IRIT Version 6.0"
- .SH NAME
- LOGFILE
-
-
-
- LOGFILE( NumericType Set )
-
- or
-
- LOGFILE( StringType FileName )
-
- If Set is non zero (see TRUE/FALSE and ON/OFF), then everything
- printed in the input window, will go to the log file specified in the
- IRIT.CFG configuration file. This file will be created the first time
- logfile is turned ON. If a string FileName is provided, it will
- be used as a log file name from now on. It also closes the current log
- file. A "LOGFILE( on );" must be issued after a log file name change.
-
- Example:
-
- LOGFILE( "Data1" );
- LOGFILE( on );
- printf( "Resolution = %lf\n", list( resolution ) );
- LOGFILE( off );
-
- to print the current resolution level into file Data1.
-